home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ROM Magic
/
ROM Magic.iso
/
pc
/
03_urag
/
cover0
/
00072_Script_72
< prev
next >
Wrap
Text File
|
1980-02-16
|
821b
|
41 lines
on startMovie
when keyDown then keyCheck
puppetSprite 9, true
set the castNum of sprite 9 to A35
updateStage
end startMovie
on keyCheck
if the keyCode = 123 then
dontPassEvent
myPrev
else if the keyCode = 124 then
dontPassEvent
myNext
else if the key = ENTER or the key = RETURN then
dontPassEvent
put the castNum of sprite 2 into myBook
put the name of cast myBook into myview
play frame 1 of movie myview
end if
end keyCheck
on myNext
puppetSound "Shutter"
if the frame = 13 then ---Last frame
play frame 20 ---demo
else
go to marker (1)
end if
end myNext
on myPrev
puppetSound "Shutter"
if the frame = 1 then
play frame 20 ---demo
else
go to marker (-1)
end if
end myPrev